/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #f3f4f7, #dfe3ee);
    color: #333;
}

header {
    background: linear-gradient(to right, #4b6cb7, #182848);
    padding: 20px 0;
    text-align: center;
    color: white;
    animation: fadeIn 2s ease-in;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px #000;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px 0;
    animation: fadeIn 2s ease-in;
}

.member-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    padding: 20px;
}

.member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.member-card img {
    width: 100%;
    border-radius: 10px;
}

.member-card h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 10px 0;
    animation: fadeIn 1.5s ease-in;
}

.member-card p {
    font-size: 1rem;
    color: #666;
    animation: fadeIn 1.5s ease-in;
}

.contact-info p {
    margin: 5px 0;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    color: #4b6cb7;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #182848;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #182848;
    padding: 20px 0;
    text-align: center;
    color: white;
    animation: fadeInUp 2s ease-in;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header